+2006-12-22 Matthias Clasen <mclasen@redhat.com>
+
+ * modules/engines/pixbuf/pixbuf.h:
+ * modules/engines/pixbuf/pixbuf-rc-style.h:
+ * modules/engines/pixbuf/pixbuf-style.h: Move
+ G_GNUC_INTERNAL before function declarations. (#352276,
+ Damien Carbery)
+
2006-12-22 Matthias Clasen <mclasen@redhat.com>
* demos/gtk-demo/*.c: Fix some leaks. (#348108, Chris
typedef struct _PixbufRcStyle PixbufRcStyle;
typedef struct _PixbufRcStyleClass PixbufRcStyleClass;
-extern GType pixbuf_type_rc_style G_GNUC_INTERNAL;
+extern G_GNUC_INTERNAL GType pixbuf_type_rc_style;
#define PIXBUF_TYPE_RC_STYLE pixbuf_type_rc_style
#define PIXBUF_RC_STYLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PIXBUF_TYPE_RC_STYLE, PixbufRcStyle))
GtkRcStyleClass parent_class;
};
-void pixbuf_rc_style_register_type (GTypeModule *module) G_GNUC_INTERNAL;
+G_GNUC_INTERNAL void pixbuf_rc_style_register_type (GTypeModule *module);
typedef struct _PixbufStyle PixbufStyle;
typedef struct _PixbufStyleClass PixbufStyleClass;
-extern GType pixbuf_type_style G_GNUC_INTERNAL;
+extern G_GNUC_INTERNAL GType pixbuf_type_style;
#define PIXBUF_TYPE_STYLE pixbuf_type_style
#define PIXBUF_STYLE(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), PIXBUF_TYPE_STYLE, PixbufStyle))
GtkStyleClass parent_class;
};
-void pixbuf_style_register_type (GTypeModule *module) G_GNUC_INTERNAL;
+G_GNUC_INTERNAL void pixbuf_style_register_type (GTypeModule *module);
};
-ThemePixbuf *theme_pixbuf_new (void) G_GNUC_INTERNAL;
-void theme_pixbuf_destroy (ThemePixbuf *theme_pb) G_GNUC_INTERNAL;
-void theme_pixbuf_set_filename (ThemePixbuf *theme_pb,
- const char *filename) G_GNUC_INTERNAL;
-GdkPixbuf * theme_pixbuf_get_pixbuf (ThemePixbuf *theme_pb) G_GNUC_INTERNAL;
-void theme_pixbuf_set_border (ThemePixbuf *theme_pb,
+G_GNUC_INTERNAL ThemePixbuf *theme_pixbuf_new (void);
+G_GNUC_INTERNAL void theme_pixbuf_destroy (ThemePixbuf *theme_pb);
+G_GNUC_INTERNAL void theme_pixbuf_set_filename (ThemePixbuf *theme_pb,
+ const char *filename);
+G_GNUC_INTERNAL GdkPixbuf * theme_pixbuf_get_pixbuf (ThemePixbuf *theme_pb);
+G_GNUC_INTERNAL void theme_pixbuf_set_border (ThemePixbuf *theme_pb,
gint left,
gint right,
gint top,
- gint bottom) G_GNUC_INTERNAL;
-void theme_pixbuf_set_stretch (ThemePixbuf *theme_pb,
- gboolean stretch) G_GNUC_INTERNAL;
-void theme_pixbuf_render (ThemePixbuf *theme_pb,
+ gint bottom);
+G_GNUC_INTERNAL void theme_pixbuf_set_stretch (ThemePixbuf *theme_pb,
+ gboolean stretch);
+G_GNUC_INTERNAL void theme_pixbuf_render (ThemePixbuf *theme_pb,
GdkWindow *window,
GdkBitmap *mask,
GdkRectangle *clip_rect,
gint dest_x,
gint dest_y,
gint dest_width,
- gint dest_height) G_GNUC_INTERNAL;
+ gint dest_height);